HTML DOM id 属性
定义和用法
id 属性设置或返回 body 元素的 id。
语法
bodyObject.id=id
实例
下面的例子将展示设置 <body> 元素的 id 的两种方法:
<html>
<body id="myid">
<script type="text/javascript">
x=document.getElementsByTagName('body')[0];
document.write("Body id: " + x.id
);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('myid').id
);
</script>
</body>
</html>
输出:
Body id: myid
An alternate way: myid